-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(packages/vkui): add missed "type": "module" #7939
Open
inomdzhon
wants to merge
6
commits into
master
Choose a base branch
from
imirdzhamolov/fix/packages-vkui-add-type-module
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+175
−172
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Это повлекло за собой следующие изменения: - ~`packages/vkui/shared.config.js`~ – переименование в `.mjs` не удалось из-за **react-styleguidist**, который не умеет в **ESM**, поэтому перенёс в корневой `shared.js`, который используется только в папке `/styleguide` - `stylelint.config.mjs` – заменил импорты из `shared.config.js` на объявление путей прямо в файле - `packages/vkui/cssm/postcss.config.js` → `packages/vkui/cssm/postcss.config.cjs` – заменил импорты из `shared.config.js` на объявление путей прямо в файле - `packages/vkui/scripts/postcss.js` → `packages/vkui/scripts/postcss.cjs` – заменил импорты из `shared.config.js` на объявление путей прямо в файле, а также перенёс объявления `VKUI_TOKENS_CSS` и `generateScopedName` - `packages/vkui/tsconfig.json` – упростил `include`, а то было точечное определение файлов - `packages/vkui/.eslintrc.js` → `packages/vkui/.eslintrc.cjs` - `packages/vkui/rspack.styles.config.ts` → `packages/vkui/rspack.styles.config.mjs` – т.к. начал падать с ошибкой `ERR_UNKNOWN_FILE_EXTENSION`
inomdzhon
force-pushed
the
imirdzhamolov/fix/packages-vkui-add-type-module
branch
from
November 13, 2024 14:01
2eb8c2b
to
941138e
Compare
BlackySoul
previously approved these changes
Nov 13, 2024
size-limit report 📦
|
👀 Docs deployed
Commit c210090 |
e2e tests |
SevereCloud
approved these changes
Nov 14, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Описание
В #7611 у пакета
packages/vkui
мы удалили поле"main"
, но при этом"type"
остался какcommonjs
.Обнаружил это при тестировании
v7.0.0-beta.1
в стороннем репозитории при запуске Jest. Из-за"type": "commonjs"
, он пытается обратиться к полю"main"
, но так как его нет, тест падает с ошибкойCannot find module
. С"type": "module"
такой проблемы не будет, т.к. уже будет обращаться к полю"module"
.Изменения
Это повлекло за собой следующие изменения:
– переименование вpackages/vkui/shared.config.js
.mjs
не удалось из-за react-styleguidist, который не умеет в ESM, поэтому перенёс содержимое в корневойshared.js
, который используется только в папке/styleguide
stylelint.config.mjs
– заменил импорты изshared.config.js
на объявление путей прямо в файлеpackages/vkui/cssm/postcss.config.js
→packages/vkui/cssm/postcss.config.cjs
– заменил импорты изshared.config.js
на объявление путей прямо в файлеpackages/vkui/scripts/postcss.js
→packages/vkui/scripts/postcss.cjs
– заменил импорты изshared.config.js
на объявление путей прямо в файле, а также перенёс объявленияVKUI_TOKENS_CSS
иgenerateScopedName
packages/vkui/tsconfig.json
– упростилinclude
, а то было точечное определение файловpackages/vkui/.eslintrc.js
→packages/vkui/.eslintrc.cjs
, иначе падает с ошибкой ERR_REQUIRE_ESM. Также обнаружилось, что в@vkontakte/vkjs
не хватает поля"exports"
(см. BREAKING CHANGE: type module vkjs#552)packages/vkui/rspack.styles.config.ts
→packages/vkui/rspack.styles.config.mjs
, т.к. начал падать с ошибкойERR_UNKNOWN_FILE_EXTENSION
packages/vkui/playwright-ct.config.ts
→packages/vkui/playwright-ct.config.mjs
, т.к. Playwright хочет ESM синтаксис для__dirname
и импортов JSON, что не соответствует нашемуtsconfig.json
, а отдельныйtsconfig.e2e.json
не завёлся. Также перенёс плагины изscripts/postcss.cjs
прямо в конфиг, т.к. импортscripts/postcss.cjs
фризит запуск Playwrightpackages/vkui/jest.config.ts
– добавляем@vkontakte/vkjs
вtransformIgnorePatterns
, т.к. библиотека теперь полностью поставляется как ESM (BREAKING CHANGE: type module vkjs#552).Release notes
Исправления
package.json
добавлено пропущенное поле"type": "module"
Зависимости
1.3.0
до2.0.1